home *** CD-ROM | disk | FTP | other *** search
/ Windows 6-Pak - Disc 5 / Windows 6-Pak (InfoMagic) (Disc 5) (1999).ISO / Misc-Programming-Tools / rlbare12.exe / Rlbar.cab / README.TXT < prev    next >
Text File  |  1998-09-28  |  7KB  |  233 lines

  1. RL:BarCode OCX Professional Ver. 1.21
  2. =====================================
  3.  
  4. Setup
  5. =====
  6. To install this OCX in Windows 95 or Window NT.
  7. First, Unzip the RLBAR121.EXE file. (Self-unzip format)
  8.  
  9. Extract the files to a specify directory 
  10. (default directory is C:\OCX_TEMP)
  11.  
  12. You can find out these files and directories like following:
  13.  
  14.     README.TXT                This File
  15.     ORDER.TXT                How to order this ocx
  16.     Sample <DIR>-+                 (Visual Basic 4.0 / 5.0 Sample)
  17.              +-- PROJECT1.VBP        Sample Project file
  18.              |       :
  19.              |       :
  20.     
  21.     Setup <DIR> -+                 (Setup program directory)
  22.                  +-- Setup.exe          Setup program    
  23.              |         :
  24.              |       :
  25.  
  26. Now you can double-click on it and execute the setup program.
  27.  
  28. When setup finished, that mean you can use the OCX in the Visual Basic
  29. development evironment (v4.0 or v5.0)
  30.  
  31. Otherwise, You can find out for these files on installation directory
  32. (the temp directory that you extract the install program):
  33.  
  34.  
  35.  
  36. RL:BarCode OCX Professional Ver. 1.21
  37. =====================================
  38. RL:BarCode OCX Control is support for the BarCode drawing. Use this 
  39. control, you can control any BarCode in your program. You also can 
  40. print the BarCode from your program, or let your program can print
  41. the BarCode to the printer. All in your control!
  42.  
  43. Use this control, you can design any application that need BarCode
  44. support. 
  45.  
  46. The Point is : You don't need to know any BarCode's rule!!
  47.  
  48. RL:BarCode OCX allow you print the BarCode to the printer! You can use it
  49. to print a very match size BarCode that you want. You do not need the
  50. other BarCode Control any more! in before case, the other BarCode 
  51. Control is make the BarCode to the screen or bitmap picture, then paint
  52. the BarCode's picture to the printer. This way will let the BarCode 
  53. look like so bad. And the BarCode's Code Text will look not sure beauty.
  54.  
  55.  
  56.                 INFORMATION
  57.  
  58. Warning!!
  59. =========
  60. This control is a evaluation copy, it can use in development evironment 
  61. only. If you want use it to design some application in your project,
  62. you MUST buy the Extra Version. In Extra Version, you can get all of 
  63. the powerful function that you need !!
  64.  
  65. For Detail, Please read ORDER.TXT.
  66.  
  67.  
  68. About this version
  69. ==================
  70. In this version, we versus with Intel Pentium processor for optimum 
  71. proformance. So it will has better process with drawing graphics.
  72.  
  73. -----------------------------------------------------------------------
  74.  
  75. Visual Basic 4.0 / 5.0 Sample
  76. =============================
  77. There has a sample project named Project1.vbp, you can try to open
  78. it in your Visual Basic 4.0 (32 bit) / 5.0, the sample program will 
  79. show you how the OCX control works.
  80.  
  81.  
  82. Introuction
  83. ===========
  84. The RL:BarCode Control are support the BarCode drawing method like below:
  85.  
  86. BarCODABAR
  87. BarCODE128
  88. BarCODE25
  89. BarCODE39
  90. BarCODE39F
  91. BarCODE93
  92. BarEAN13
  93. BarEAN8
  94. BarISBN
  95. BarCODEMSI
  96. BarPOSTNET
  97. BarUPCA
  98. BarUPCAPlus
  99. BarUPCE
  100.  
  101. You can use the method name to drawing the barcode you want.
  102.  
  103.  
  104. How To Use
  105. ==========
  106. Before you design your application with RL:BarCode OCX,
  107. you MUST insert the Security Key (the KeyPro) into your
  108. Printer port (like LPT1:).
  109.  
  110. for example:
  111.   1. You want a Code 39 BarCode
  112.   2. The RL:BarCode Control is named RLBar1 
  113.   3. You want to drawing on a PictureBox named Picture1
  114.  
  115. You just need fill the code of method call like below:
  116.  
  117. Private Sub Command1_Click()
  118.     RLBar1.BarCODE39 Picture1, _
  119.                  0, 0, _
  120.                  "1234567890", _
  121.                  20, _
  122.                  500, _
  123.                  1, _
  124.                  False, "Arial", _
  125.                  QBColor(1), QBColor(0), _
  126.                  "5:2", _
  127.                  True
  128. End Sub
  129.  
  130.  
  131. Function Define
  132. ===============
  133. All the method call parameters is same, all of the methods 
  134. has 14 parameters, You don't need to declare the function, because
  135. all the function are packaged becomes methods of the control that you 
  136. are used, the below just show you the method's parameters:
  137.  
  138. Public Function BarCODE39(pObject As Object, 
  139.                           pX As Single, 
  140.                           pY As Single, 
  141.                           pCode As String, 
  142.                           pWidth As Integer, 
  143.                           pHeight As Integer, 
  144.                           pText As Integer,
  145.                           pBold As Boolean
  146.                           pFont As String,
  147.                           pForeColor As Long
  148.                           pLineColor As Long,
  149.                           pRatio As String,
  150.                           pChk As Boolean) As Integer
  151.  
  152. All parameters means like below:
  153.  
  154. pObject        Drawing on what object.
  155.                 (the pObject must be the object that can support
  156.                  drawing method, like [Line] or [Cls] method.)
  157.         (If you want to print out the BarCode to the printer,
  158.          just need to set this parameter to Printer.)
  159.                 eg: Form1, Picture1, Printer
  160.  
  161. pX        BarCode Drawing Position X
  162.                 (Size will changed with the ScaleMode)
  163.  
  164. pY        BarCode Drawing Position Y
  165.                 (Size will changed with the ScaleMode)
  166.  
  167. pCode        BarCode's Code
  168.         (Different BarCode has its owns rule, You must know it)
  169.                 eg: EAN13 must has 12 digits that can make a BarCode
  170.                     EAN8 must has 7 digits that can make a BarCode
  171.                     Code39 has not any rule 
  172.                     ...etc.
  173.  
  174. pWidth        BarCode's Width
  175.          (Draw On Object : 1~99)
  176.         (Draw On Printer: 1~999)
  177.  
  178. pHeight        BarCode's Height
  179.          (Draw On Object : 1~999)
  180.         (Draw On Printer: 1~9999)
  181.  
  182. pText        BarCode's Code on where
  183.         (0 : None)
  184.         (1 : Below)
  185.                 (2 : Upper)
  186.  
  187. pBold        Show BarCode's Code Font Bold
  188.                 (True or False)
  189.  
  190. pFontName    BarCode's Code Font Name
  191.                 (eg: "Arial")
  192.  
  193. pFontColor    BarCode's Code Font Color
  194.                 (You can use the real color like : &h33FF0011
  195.                  , but that will be very hard to coding or to know.
  196.                  So you can instead with QBColor(4) or RGB(10,13,20) )  
  197.  
  198. pBarcodeColor    BarCode's Color
  199.                 (You can use the real color like : &h33FF0011
  200.                  , but that will be very hard to coding or to know.
  201.                  So you can instead with QBColor(4) or RGB(10,13,20) )  
  202.  
  203. pNerrow        The BarCode's Nerrow
  204.                 (This parameter is use in some BarCode that need 
  205.                  Nerrow set, like Code39, Code128, CODABAR, etc...
  206.                  if the BarCode has no Nerrow set, like EAN13, EAN8,
  207.                  You can just filled the parameter with a "1:1")
  208.                 (eg: "3:1")
  209.  
  210. pChecksum    BarCode's CheckSum
  211.         (True : Show CheckSum)
  212.         (False: Do not Show CheckSum)
  213.  
  214.  
  215. Contact with us
  216. ===============
  217. If you have other question, please contact with us by e-mail
  218.         
  219.         support@reiolabs.com
  220.         service@reiolabs.com
  221.  
  222. or visit our site for new information, or new version upgraged
  223.  
  224.         http://www.reiolabs.com
  225.  
  226. ----------------------------------------------------------------------
  227. (p)1997 REIO Labs. 
  228. (c)1998 PHISYS Corporation.
  229. All rights reserved.
  230.  
  231. Information in this document is subject to change without notice.
  232. Other products and companies referred to herein are trademarks or 
  233. registered trademarks of their respective companies or mark holders.